Skip to content

Commit

Permalink
Add some text to HLE/LLE options.
Browse files Browse the repository at this point in the history
  • Loading branch information
hulkholden committed Nov 15, 2023
1 parent 0995959 commit 09dc5fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hle/graphics_options.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ folder.add(graphicsOptions, 'canvasScale').name('Canvas Scale').min(1).max(4).st
folder.add(graphicsOptions, 'haltOnWarning').name('Halt on Warning');
folder.add(graphicsOptions, 'dumpMicrocode').name('Dump Microcode');
folder.add(graphicsOptions, 'dumpMicrocodeSubstring').name('Dump Microcode Substring');
folder.add(graphicsOptions, 'emulationMode', { HLE: 'HLE', LLE: 'LLE' }).name('Emulation Mode');
folder.add(graphicsOptions, 'emulationMode', { 'HLE (Recommended)': 'HLE', 'LLE (Experimental, Slow)': 'LLE' }).name('Emulation Mode');
folder.add(graphicsOptions, 'dumpRDP').name('Dump RDP');

0 comments on commit 09dc5fd

Please sign in to comment.