Skip to content

Commit

Permalink
Merge branch 'master' into feature/link
Browse files Browse the repository at this point in the history
  • Loading branch information
rmonier committed May 15, 2023
2 parents 04fefc7 + 389f434 commit fcdffb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Launcher/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <string>

// The current version of RBSE
#define RBSE_VERSION "3.8"
#define RBSE_VERSION "3.8.1"
// maximum length of output file names
#define MAX_OUTFILE_NAME_LEN 64
// maximum length of output formats
Expand Down
4 changes: 2 additions & 2 deletions Module/OlvcCallback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void load_track(uint32_t deck_idx);
static Hook olvc_hook;

// djplay::DeviceComponent::operateLongValueChange
#define DC_OLVC_SIG "48 8B C4 41 56 48 83 EC 60 48 C7 40 C8 FE FF FF FF 48 89 58 08 48 89 68 10 48 89 70 18 48 89 78 20 41"
#define DC_OLVC_SIG "48 8B C4 41 56 48 83 EC 60 48 C7 40 C8 FE FF FF FF 48 89 58 08 48 89 68 10 48 89 70 18 48 89 78 20 41 8B"

// initialize the OperateLongValueChange hook
bool init_olvc_callback()
Expand All @@ -60,7 +60,7 @@ bool init_olvc_callback()
}
olvc_hook.init(olvc, olvc_callback, NULL);
if (!olvc_hook.install_hook()) {
error("Failed to install set_tempo hook");
error("Failed to install olvc_hook");
return false;
}
return true;
Expand Down

0 comments on commit fcdffb5

Please sign in to comment.