Skip to content

Commit

Permalink
Add separate caption for invalid Replay Buffer Save Path
Browse files Browse the repository at this point in the history
  • Loading branch information
palana committed Sep 23, 2014
1 parent ca33d44 commit 4131201
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SettingsPublish.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void SettingsPublish::ApplySettings()
{
String text = Str("Settings.Publish.InvalidReplayBufferSavePath");
text.FindReplace(L"$1", defaultPath);
if (OBSMessageBox(nullptr, text, Str("Settings.Publish.InvalidSavePathCaption"), MB_ICONEXCLAMATION | MB_OKCANCEL) != IDOK)
if (OBSMessageBox(nullptr, text, Str("Settings.Publish.InvalidReplayBufferSavePathCaption"), MB_ICONEXCLAMATION | MB_OKCANCEL) != IDOK)
{
SetAbortApplySettings(true);
return;
Expand Down
1 change: 1 addition & 0 deletions rundir/locale/en.txt
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ Settings.Publish.Username="User Name (if any):"
Settings.Publish.InvalidSavePath="The File Path is invalid, the default Path '$1' will be used instead"
Settings.Publish.InvalidSavePathCaption="Invalid File Path"
Settings.Publish.InvalidReplayBufferSavePath="The Replay Buffer File Path is invalid, the default Path '$1' will be used instead"
Settings.Publish.InvalidReplayBufferSavePathCaption="Invalid Replay Buffer File Path"

Settings.Publish.ReplayBufferMemory="Estimated Replay Buffer memory usage (MB):"
Settings.Publish.ReplayBufferLength="Replay Buffer length (seconds):"
Expand Down

0 comments on commit 4131201

Please sign in to comment.