diff --git a/source/app.d b/source/app.d index 0d84829..9554c5a 100644 --- a/source/app.d +++ b/source/app.d @@ -210,10 +210,10 @@ class Application : TkdApplication { if (!codeIsExecute) { try { startAddress = addressEntry.getValue.to!uint(16); - if (startAddress < 0x80000000 || startAddress > 0x81FFFFFF) throw new Exception("ayy lmao"); + if (startAddress < 0x80000000 || startAddress > 0x91FFFFFF) throw new Exception("ayy lmao"); } catch (Exception e) { - errorNotice("Your address should be a hex number between 80000000 and 81FFFFFF (or use N/A for the C0 codetype)."); + errorNotice("Your address should be a hex number between 80000000 and 81FFFFFF (or use N/A for the C0 codetype). If you're using a pointer address, use a hex number between 90000000 and 91FFFFFF."); return; } } @@ -433,4 +433,4 @@ class Application : TkdApplication { void main() { auto application = new Application; application.run(); -} \ No newline at end of file +}