Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
STARK: Small style change
Browse files Browse the repository at this point in the history
  • Loading branch information
Dougaak committed Jul 11, 2018
1 parent c7c407d commit 55400ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engines/stark/services/userinterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ class UserInterface {
void toggleScreen(Screen::Name screenName);

/** Toggle subtitles on and off */
void requestToggleSubtitle() { _toggleSubtitle = !_toggleSubtitle; }
bool hasToggleSubtitleRequest() { return _toggleSubtitle; }
void requestToggleSubtitle() { _shouldToggleSubtitle = !_shouldToggleSubtitle; }
bool hasToggleSubtitleRequest() { return _shouldToggleSubtitle; }
void performToggleSubtitle();

/** Cycle back or forward through inventory cursor items */
Expand Down Expand Up @@ -225,7 +225,7 @@ class UserInterface {
bool _interactive;
bool _interactionAttemptDenied;

bool _toggleSubtitle;
bool _shouldToggleSubtitle;

Graphics::Surface *_gameWindowThumbnail;
};
Expand Down

0 comments on commit 55400ab

Please sign in to comment.