mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove contents memset from editorclass constructor
It gets (re-) initialized in editorclass::reset() anyway, so I'm just removing this for code clarity.
This commit is contained in:
parent
6f0177ec04
commit
83cccbed07
1 changed files with 0 additions and 3 deletions
|
@ -54,9 +54,6 @@ edlevelclass::edlevelclass(void)
|
|||
|
||||
editorclass::editorclass(void)
|
||||
{
|
||||
//We create a blank map
|
||||
SDL_memset(contents, 0, sizeof(contents));
|
||||
|
||||
for (size_t i = 0; i < SDL_arraysize(vmult); i++)
|
||||
{
|
||||
vmult[i] = i * 40 * maxwidth;
|
||||
|
|
Loading…
Reference in a new issue