remove debug stuff

This commit is contained in:
Kauê 地球の土星人 2023-07-04 16:28:36 -03:00
parent 3c7ef24b86
commit 5a9d220823

View File

@ -4,8 +4,6 @@
#include "Graphics.h"
#include "String.h"
#include "Funcs.h"
#include <stdio.h>
#include "Chat.h"
#include "Bitmap.h"
#include "Errors.h"
#include "ExtMath.h"
@ -223,7 +221,6 @@ void Window_ProcessEvents(double delta) {
#endif
static void Cursor_GetRawPos(int* x, int* y) {
*x = 100; *y = 100;
u32 type;
@ -236,6 +233,8 @@ static void Cursor_GetRawPos(int* x, int* y) {
*x = wd->ir.x;
*y = wd->ir.y;
} else {
*x = 0; *y = 0;
}
}
void Cursor_SetPosition(int x, int y) {