1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-31 22:19:44 +01:00

searchable gettext for undo/redo notes

This commit is contained in:
NyakoFox 2024-10-01 16:01:05 -03:00
parent 37b3091432
commit b7f9ba5c2d

View file

@ -3328,7 +3328,7 @@ void process_editor_buffer(const bool undo)
if (buffer->size() == 0)
{
ed.show_note(loc::gettext(undo ? "ERROR: Nothing to undo" : "ERROR: Nothing to redo"));
ed.show_note(undo ? loc::gettext("ERROR: Nothing to undo") : loc::gettext("ERROR: Nothing to redo"));
return;
}