wdsp/version.c
Uladzimir Karpenka 89c8a0e2b5 first commit
2026-06-01 15:58:45 +03:00

12 lines
344 B
C

#include "comm.h"
PORT
int GetWDSPVersion()
{
// WDSP Version numbers always contain exactly two digits to the right of the decimal point.
// For easy comparison with expected version values, the value returned by this function is
// version_number * 100. E.g., Version 1.14 will return 114.
const int version = 129;
return version;
}