1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 18:19:43 +01:00

Remove <string.h> #include from main.cpp

We no longer use libc string functions, instead preferring SDL's; this
unused include should be removed.
This commit is contained in:
Misa 2021-02-15 18:51:39 -08:00 committed by Ethan Lee
parent d39fe96cf2
commit de1e773b7f

View file

@ -1,6 +1,5 @@
#include <SDL.h> #include <SDL.h>
#include <stdio.h> #include <stdio.h>
#include <string.h>
#include "editor.h" #include "editor.h"
#include "Enums.h" #include "Enums.h"