Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private void initBrowserProcess(Context context) {
CommandLine.init(new String[] {});
if (BuildConfig.DEBUG)
CommandLine.getInstance().appendSwitchWithValue("enable-logging", "stderr");
if (BuildConfig.FLAVOR_abi == "x64")
if (BuildConfig.FLAVOR_abi.equals("x64"))
Comment thread
svillar marked this conversation as resolved.
CommandLine.getInstance().appendSwitchWithValue("disable-features", "Vulkan");

// Enable WebXR Hand Input, which is disabled by default in blink (experimental)
Expand Down
Loading