Skip to content
Closed
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
7 changes: 4 additions & 3 deletions src/main/java/com/dreammaster/lwjgl3ify/ConfirmExitSdl.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ public static int showExitDialog() {
final IntBuffer selectedOption = stack.ints(1);
final SDL_MessageBoxData box = SDL_MessageBoxData.calloc(stack);

// This dialog might get shown in a situation where localization isn't loaded, so this allows us to set a hardcoded
// default.
// See the corresponding mixin for the Minecraft class for more details.
// This dialog might get shown in a situation where localization isn't loaded, so this allows us to set a
// hardcoded
// default.
// See the corresponding mixin for the Minecraft class for more details.
final String yesText = translateOrDefault("dreamcraft.gui.quitmessage.yes", "Yes");
final String noText = translateOrDefault("dreamcraft.gui.quitmessage.no", "No");
final String neverText = translateOrDefault("dreamcraft.gui.quitmessage.never", "Don't Show Again!");
Expand Down