mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
10 lines
144 B
C++
10 lines
144 B
C++
#include "base/logging.h"
|
|
|
|
const char *GetFn(const char *fn) {
|
|
const char *p = strrchr(fn, '\\');
|
|
if (p)
|
|
return p + 1;
|
|
else
|
|
return fn;
|
|
}
|