uMod2 Alpha Version: known bugs: I disabled the remove device function inside the gui, because something in the event handling goes terrible wrong.

Implemented a some new features.
This commit is contained in:
code@koerner-de.net
2012-07-15 18:59:03 +00:00
parent d99107a919
commit 0bc7eebede
69 changed files with 7975 additions and 2393 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* uMod_ModElement.cpp
*
* Created on: 26.06.2012
* Author: marts
*/
#include "uMod_Main.h"
int Compare_uMod_TextureElement(uMod_TextureElement* a,uMod_TextureElement* b)
{
if ( a->Hash() < b->Hash()) return -1;
else if ( a->Hash() == b->Hash()) return 0;
else return +1;
}