Jamiras
Jamiras
There's some discussion in here that's probably worth revisiting when we do start on the feature, but these changes are no longer compatible with the current codebase. Closing.
That would be a function for the client. rcheevos provides an event when an achievement triggers (see [wiki](https://github.com/RetroAchievements/rcheevos/wiki/rc_runtime_do_frame)). The client uses that event to pop up the notification. Each client...
-32 is `RC_NO_RESPONSE` https://github.com/RetroAchievements/rcheevos/blob/c5f9a6412e55ef489c1769a52ee1d590e4abd64b/include/rc_error.h#L45 Which means the `http_status_code` was set to `RC_API_SERVER_RESPONSE_CLIENT_ERROR` (-1) or `RC_API_SERVER_RESPONSE_RETRYABLE_CLIENT_ERROR` (-2), or the `body` was null or empty. https://github.com/RetroAchievements/rcheevos/blob/c5f9a6412e55ef489c1769a52ee1d590e4abd64b/src/rapi/rc_api_common.c#L326-L351 The provided log shows there was...
Working as designed. VALUE formatting reads the data as a signed integer. 
Unsigned value format was added in the 1.3.0 release of the DLL via #1056.
I've spent about 20 minutes trying to reproduce this myself, without luck. The partial offset appears correctly in the Code Note Window and the tooltip in the achievement editor updates...
Delta information and hit counts should be stored in the save state as well. The caveat is if the achievement definition has changed, the achievement is just reset instead of...
This should have been fixed in 1.12 with a change to the Core DLL: https://github.com/Jamiras/Core/pull/31 Are you on 1.12? If so, can you verify the version of the Jamiras.Core.DLL is...
> right now it's a pain having to scroll to wherever the heck you decided to define X function when needed You can use "Edit > Goto Definition" (default F12)...
That's just the optimizer being helpful. The only hit is on the `Pause If`, so the `Reset Next If` can be replaced with a `Reset If`, but then it has...