Updated to use jlog prerelease-8. Adjusted as necessary.

This commit is contained in:
2024-06-19 13:58:47 -04:00
parent cb03a67f17
commit b6bb00e0de
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ CPMAddPackage(
CPMAddPackage(
NAME jlog
URL https://git.redacted.cc/josh/jlog/archive/Prerelease-7.zip
URL https://git.redacted.cc/josh/jlog/archive/Prerelease-8.zip
)
find_package(OpenGL REQUIRED)

View File

@@ -43,11 +43,11 @@ int main() {
window->setResizable(false);
window->OnKeyDownEvent += [&] (ReWindow::KeyDownEvent e) {
SDEBUG(e.key.CharCode);
DEBUG(e.key.CharCode);
};
window->OnMouseButtonDownEvent += [&] (ReWindow::MouseButtonDownEvent e) {
SDEBUG(e.Button.CharCode);
DEBUG(e.Button.CharCode);
};
while (window->isAlive()) {