1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-16 09:38:29 +02:00

Fix alphabetical ordering of includes in preloader.cpp

Dav999 added `#include "Localization.h"` before `#include "KeyPoll.h"`,
when it should go after instead, because the letter L comes after the
letter K in the English alphabet.
This commit is contained in:
Misa 2023-01-28 23:29:04 -08:00
parent d9859d4a98
commit c7098f84e5

View File

@ -3,8 +3,8 @@
#include "Game.h"
#include "Graphics.h"
#include "GraphicsUtil.h"
#include "Localization.h"
#include "KeyPoll.h"
#include "Localization.h"
#include "UtilityClass.h"
#include "VFormat.h"