default show cursor

This commit is contained in:
pigeatgarlic 2025-02-03 03:36:46 +00:00
parent 2ac445d334
commit fc8c5d1fcf
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ thread_pool_util::ThreadPool task_pool;
/**
* @brief A boolean flag to indicate whether the cursor should be displayed.
*/
bool display_cursor = false;
bool display_cursor = true;
#ifdef _WIN32
/**

View File

@ -340,8 +340,8 @@ main(int argc, char *argv[]) {
if (queue_type == QueueType::Video) {
do {
auto packet = video_packets->pop();
if (packet->is_idr() != 0 && first_video_packet) {
BOOST_LOG(info) << "idr frame";
if (first_video_packet) {
BOOST_LOG(info) << "first frame";
first_video_packet = false;
}