mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01: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:
parent
d9859d4a98
commit
c7098f84e5
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue