File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2222#pragma comment(lib, "gdiplus.lib")
2323#pragma comment(lib, "obs.lib")
2424
25+ #define OBS_EXPRESS_VERSION " 0.0.2"
26+
2527using namespace std ;
2628using namespace Gdiplus ;
2729using json = nlohmann::json;
@@ -280,7 +282,7 @@ unsigned int __stdcall read_input_proc(void* lpParam)
280282 {
281283 std::string str;
282284 std::getline (std::cin, str);
283- if (str == " q" || str == " Q" )
285+ if (str == " q" || str == " Q" )
284286 {
285287 cancelRequested = true ;
286288 break ;
@@ -301,7 +303,7 @@ void run(vector<string> arguments)
301303 cmdl.parse (arguments);
302304
303305 cout << std::endl;
304- cout << " obs-express v0.0.1 , a light weight command line screen recorder." << std::endl;
306+ cout << " obs-express v " << OBS_EXPRESS_VERSION << " , a light weight command line screen recorder." << std::endl;
305307 cout << " bundled with obs-studio v" << obs_get_version_string () << std::endl;
306308 cout << std::endl;
307309
You can’t perform that action at this time.
0 commit comments