12 lines
344 B
C
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;
|
|
}
|