Re: MKV in MPC-HomeCinema
when I play MPC it gives me an error about 'floating point support not loaded' and I really need some help in stopping this 'R6002 error'.
Indeed, I can reinstall it but some time later this error repeated again. So, can someone give me suggestions for eliminating this problem or a way that Media Player Classic stops giving this error?
Thanks in advance.
maqsood karachi pk.
Re: MKV in MPC-HomeCinema
Quote:
Originally Posted by
maqsood
when I play MPC it gives me an error about 'floating point support not loaded' and I really need some help in stopping this 'R6002 error'.
Indeed, I can reinstall it but some time later this error repeated again. So, can someone give me suggestions for eliminating this problem or a way that Media Player Classic stops giving this error?
Thanks in advance.
maqsood karachi pk.
Here is an extract from MSDN about the error R6002:
Quote:
Originally Posted by MSDN
C Run-Time Error R6002:
floating-point support not loaded
The necessary floating-point library was not linked.
Possible causes
The program was compiled or linked with an option, such as /FPi87, that requires a coprocessor, but the program was run on a machine that did not have a coprocessor installed.
A format string for a printf or scanf function contained a floating-point format specification and the program did not contain any floating-point values or variables.
The compiler minimizes a program's size by loading floating-point support only when necessary. The compiler cannot detect floating-point format specifications in format strings, so it does not load the necessary floating-point routines.
Use a floating-point argument to correspond to the floating-point format specification, or perform a floating-point assignment elsewhere in the program. This causes floating-point support to be loaded.
In a mixed-language program, a C library was specified before a FORTRAN library when the program was linked. Relink and specify the C library last.
-From MSDN.