mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Fixed two incorrect code comments.
This commit is contained in:
parent
b8e854b4ae
commit
2501a0aa26
|
@ -542,7 +542,7 @@ bool SystemData::loadConfig()
|
||||||
|
|
||||||
for (pugi::xml_node system {systemList.child("system")}; system;
|
for (pugi::xml_node system {systemList.child("system")}; system;
|
||||||
system = system.next_sibling("system")) {
|
system = system.next_sibling("system")) {
|
||||||
// Parse events so that the OS doesn't think the application is hanging on startup,
|
// Poll events so that the OS doesn't think the application is hanging on startup,
|
||||||
// this is required as the main application loop hasn't started yet.
|
// this is required as the main application loop hasn't started yet.
|
||||||
while (SDL_PollEvent(&event)) {};
|
while (SDL_PollEvent(&event)) {};
|
||||||
|
|
||||||
|
|
|
@ -1100,7 +1100,7 @@ void ViewController::preload()
|
||||||
|
|
||||||
for (auto it = SystemData::sSystemVector.cbegin(); // Line break.
|
for (auto it = SystemData::sSystemVector.cbegin(); // Line break.
|
||||||
it != SystemData::sSystemVector.cend(); ++it) {
|
it != SystemData::sSystemVector.cend(); ++it) {
|
||||||
// Parse events so that the OS doesn't think the application is hanging on startup,
|
// Poll events so that the OS doesn't think the application is hanging on startup,
|
||||||
// this is required as the main application loop hasn't started yet.
|
// this is required as the main application loop hasn't started yet.
|
||||||
while (SDL_PollEvent(&event)) {};
|
while (SDL_PollEvent(&event)) {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue