--- wxCpuThrottle/src/acpiparser.cpp 2009/09/16 16:37:34 325 +++ wxCpuThrottle/src/acpiparser.cpp 2009/09/16 18:47:18 326 @@ -41,7 +41,7 @@ char buffer[1024]; std::ifstream in; - in.open("/proc/acpi/processor/CPU1/throttling"); + in.open("/proc/acpi/processor/CPU0/throttling"); if (!in) throw std::runtime_error("Could not open file"); @@ -116,7 +116,7 @@ throw std::invalid_argument("newState too small"); std::ofstream out; - out.open("/proc/acpi/processor/CPU1/throttling"); + out.open("/proc/acpi/processor/CPU0/throttling"); if (!out) throw std::runtime_error("Could not open file");